🎖️GitЯра🎖️
androidApp/src/google/AndroidManifest.xml 7730823aad5ffe461199820be209e18d09b0ee07 (7730823a) Text, 5.95 KB
Tff7b72<?xml version="1.0" encoding="utf-8"?>
T8b949e<!--
~ Copyright (c) 2025 Meshtastic LLC
~
~ This program is free software: you can redistribute it and/or modify
~ it under the terms of the GNU General Public License as published by
~ the Free Software Foundation, either version 3 of the License, or
~ (at your option) any later version.
~
~ This program is distributed in the hope that it will be useful,
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
~ GNU General Public License for more details.
~
~ You should have received a copy of the GNU General Public License
~ along with this program. If not, see <https://www.gnu.org/licenses/>.
-->
Tff7b72<manifest Te6edf3xmlns:android=Ta5d6ff"http://schemas.android.com/apk/res/android"
Te6edf3xmlns:tools=Ta5d6ff"http://schemas.android.com/tools"Tff7b72>
Tff7b72<application
Te6edf3android:name=Ta5d6ff"org.meshtastic.app.GoogleMeshUtilApplication"
Te6edf3tools:replace=Ta5d6ff"android:name"Tff7b72>
Tff7b72<meta-data
Te6edf3android:name=Ta5d6ff"com.google.android.geo.API_KEY"
Te6edf3android:value=Ta5d6ff"${MAPS_API_KEY}" Tff7b72/>
Tff7b72<property
Te6edf3android:name=Ta5d6ff"android.app.appfunctions.app_metadata"
Te6edf3android:resource=Ta5d6ff"@xml/app_metadata" Tff7b72/>
T8b949e<!--
Register as an "Open in / Send to Meshtastic" target for GeoJSON/KML map files (e.g. the Meshtastic Site
Planner's "Send to App" share). Google flavor only — it's the flavor that renders map overlays. Merged into
the MainActivity declared in the base manifest. application/json is broad, but the map importer validates the
file extension and ignores anything that isn't a supported layer.
-->
Tff7b72<activity
Te6edf3android:name=Ta5d6ff"org.meshtastic.app.MainActivity"
Te6edf3tools:node=Ta5d6ff"merge"Tff7b72>
Tff7b72<intent-filterTff7b72>
Tff7b72<action Te6edf3android:name=Ta5d6ff"android.intent.action.VIEW" Tff7b72/>
Tff7b72<category Te6edf3android:name=Ta5d6ff"android.intent.category.DEFAULT" Tff7b72/>
Tff7b72<data Te6edf3android:mimeType=Ta5d6ff"application/geo+json" Tff7b72/>
Tff7b72<data Te6edf3android:mimeType=Ta5d6ff"application/vnd.geo+json" Tff7b72/>
Tff7b72<data Te6edf3android:mimeType=Ta5d6ff"application/json" Tff7b72/>
Tff7b72<data Te6edf3android:mimeType=Ta5d6ff"application/vnd.google-earth.kml+xml" Tff7b72/>
Tff7b72<data Te6edf3android:mimeType=Ta5d6ff"application/vnd.google-earth.kmz" Tff7b72/>
Tff7b72</intent-filter>
Tff7b72<intent-filterTff7b72>
Tff7b72<action Te6edf3android:name=Ta5d6ff"android.intent.action.SEND" Tff7b72/>
Tff7b72<category Te6edf3android:name=Ta5d6ff"android.intent.category.DEFAULT" Tff7b72/>
Tff7b72<data Te6edf3android:mimeType=Ta5d6ff"application/geo+json" Tff7b72/>
Tff7b72<data Te6edf3android:mimeType=Ta5d6ff"application/vnd.geo+json" Tff7b72/>
Tff7b72<data Te6edf3android:mimeType=Ta5d6ff"application/json" Tff7b72/>
Tff7b72<data Te6edf3android:mimeType=Ta5d6ff"application/vnd.google-earth.kml+xml" Tff7b72/>
Tff7b72<data Te6edf3android:mimeType=Ta5d6ff"application/vnd.google-earth.kmz" Tff7b72/>
Tff7b72</intent-filter>
Tff7b72</activity>
T8b949e<!--
AppFunctions 1.0.0-alpha10 discontinued the appfunctions-service artifact whose
manifest used to contribute these two delegate services; apps must now declare
them (mirrors the alpha09 appfunctions-service AAR manifest, classes relocated
to the androidx.appfunctions package).
-->
Tff7b72<service
Te6edf3android:name=Ta5d6ff"androidx.appfunctions.PlatformAppFunctionService"
Te6edf3android:enabled=Ta5d6ff"@bool/enablePlatformAppFunctionService"
Te6edf3android:exported=Ta5d6ff"true"
Te6edf3android:permission=Ta5d6ff"android.permission.BIND_APP_FUNCTION_SERVICE"
Te6edf3tools:targetApi=Ta5d6ff"36"Tff7b72>
Tff7b72<property
Te6edf3android:name=Ta5d6ff"android.app.appfunctions"
Te6edf3android:value=Ta5d6ff"app_functions.xml" Tff7b72/>
Tff7b72<property
Te6edf3android:name=Ta5d6ff"android.app.appfunctions.schema"
Te6edf3android:value=Ta5d6ff"app_functions_schema.xsd" Tff7b72/>
Tff7b72<property
Te6edf3android:name=Ta5d6ff"android.app.appfunctions.v2"
Te6edf3android:value=Ta5d6ff"app_functions_v2.xml" Tff7b72/>
Tff7b72<intent-filterTff7b72>
Tff7b72<action Te6edf3android:name=Ta5d6ff"android.app.appfunctions.AppFunctionService" Tff7b72/>
Tff7b72</intent-filter>
Tff7b72</service>
T8b949e<!--
tools:ignore="Instantiatable": lint can't resolve this library-provided service's superclass chain
up to android.app.Service. ExtensionAppFunctionService extends the abstract
ExtensionsAppFunctionService, whose base is com.android.extensions.appfunctions.AppFunctionService —
a class supplied at runtime by the optional "com.android.extensions.appfunctions" <uses-library>
(declared android:required="false" in the appfunctions AAR), not by any compile/lint-classpath
artifact. Lint therefore can't prove it's a Service and false-positives. The sibling
PlatformAppFunctionService is fine because its chain ends in the compile-SDK
android.app.appfunctions.AppFunctionService, so the check stays active there and on our own services.
-->
Tff7b72<service
Te6edf3android:name=Ta5d6ff"androidx.appfunctions.ExtensionAppFunctionService"
Te6edf3android:enabled=Ta5d6ff"@bool/enableExtensionAppFunctionService"
Te6edf3android:exported=Ta5d6ff"true"
Te6edf3android:permission=Ta5d6ff"android.permission.BIND_APP_FUNCTION_SERVICE"
Te6edf3tools:ignore=Ta5d6ff"Instantiatable"Tff7b72>
Tff7b72<property
Te6edf3android:name=Ta5d6ff"android.app.appfunctions"
Te6edf3android:value=Ta5d6ff"app_functions.xml" Tff7b72/>
Tff7b72<property
Te6edf3android:name=Ta5d6ff"android.app.appfunctions.schema"
Te6edf3android:value=Ta5d6ff"app_functions_schema.xsd" Tff7b72/>
Tff7b72<property
Te6edf3android:name=Ta5d6ff"android.app.appfunctions.v2"
Te6edf3android:value=Ta5d6ff"app_functions_v2.xml" Tff7b72/>
Tff7b72<intent-filterTff7b72>
Tff7b72<action Te6edf3android:name=Ta5d6ff"android.app.appfunctions.AppFunctionService" Tff7b72/>
Tff7b72</intent-filter>
Tff7b72</service>
Tff7b72</application>
Tff7b72</manifest>
Served by rngit 1.5.0 - Generated in 0.05s